home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / cp862.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  167 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from 'CP862.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     128: 1488,
  39.     129: 1489,
  40.     130: 1490,
  41.     131: 1491,
  42.     132: 1492,
  43.     133: 1493,
  44.     134: 1494,
  45.     135: 1495,
  46.     136: 1496,
  47.     137: 1497,
  48.     138: 1498,
  49.     139: 1499,
  50.     140: 1500,
  51.     141: 1501,
  52.     142: 1502,
  53.     143: 1503,
  54.     144: 1504,
  55.     145: 1505,
  56.     146: 1506,
  57.     147: 1507,
  58.     148: 1508,
  59.     149: 1509,
  60.     150: 1510,
  61.     151: 1511,
  62.     152: 1512,
  63.     153: 1513,
  64.     154: 1514,
  65.     155: 162,
  66.     156: 163,
  67.     157: 165,
  68.     158: 8359,
  69.     159: 402,
  70.     160: 225,
  71.     161: 237,
  72.     162: 243,
  73.     163: 250,
  74.     164: 241,
  75.     165: 209,
  76.     166: 170,
  77.     167: 186,
  78.     168: 191,
  79.     169: 8976,
  80.     170: 172,
  81.     171: 189,
  82.     172: 188,
  83.     173: 161,
  84.     174: 171,
  85.     175: 187,
  86.     176: 9617,
  87.     177: 9618,
  88.     178: 9619,
  89.     179: 9474,
  90.     180: 9508,
  91.     181: 9569,
  92.     182: 9570,
  93.     183: 9558,
  94.     184: 9557,
  95.     185: 9571,
  96.     186: 9553,
  97.     187: 9559,
  98.     188: 9565,
  99.     189: 9564,
  100.     190: 9563,
  101.     191: 9488,
  102.     192: 9492,
  103.     193: 9524,
  104.     194: 9516,
  105.     195: 9500,
  106.     196: 9472,
  107.     197: 9532,
  108.     198: 9566,
  109.     199: 9567,
  110.     200: 9562,
  111.     201: 9556,
  112.     202: 9577,
  113.     203: 9574,
  114.     204: 9568,
  115.     205: 9552,
  116.     206: 9580,
  117.     207: 9575,
  118.     208: 9576,
  119.     209: 9572,
  120.     210: 9573,
  121.     211: 9561,
  122.     212: 9560,
  123.     213: 9554,
  124.     214: 9555,
  125.     215: 9579,
  126.     216: 9578,
  127.     217: 9496,
  128.     218: 9484,
  129.     219: 9608,
  130.     220: 9604,
  131.     221: 9612,
  132.     222: 9616,
  133.     223: 9600,
  134.     224: 945,
  135.     225: 223,
  136.     226: 915,
  137.     227: 960,
  138.     228: 931,
  139.     229: 963,
  140.     230: 181,
  141.     231: 964,
  142.     232: 934,
  143.     233: 920,
  144.     234: 937,
  145.     235: 948,
  146.     236: 8734,
  147.     237: 966,
  148.     238: 949,
  149.     239: 8745,
  150.     240: 8801,
  151.     241: 177,
  152.     242: 8805,
  153.     243: 8804,
  154.     244: 8992,
  155.     245: 8993,
  156.     246: 247,
  157.     247: 8776,
  158.     248: 176,
  159.     249: 8729,
  160.     250: 183,
  161.     251: 8730,
  162.     252: 8319,
  163.     253: 178,
  164.     254: 9632,
  165.     255: 160 })
  166. encoding_map = codecs.make_encoding_map(decoding_map)
  167.